home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Medabots Cardz
/
Medabots CD Cardz Rokusho.bin
/
pc
/
assets
/
rokusho.dxr
/
00144_Script_144
< prev
next >
Wrap
Text File
|
2001-12-07
|
582b
|
26 lines
property mysprite, glowing, counter
on beginsprite me
set mysprite to the spritenum of me
end
on exitframe me
if the blend of sprite mysprite = 0 then
glowing = "up"
else if the blend of sprite mysprite = 100 then
glowing = "down"
counter = 0
end if
if counter < 20 then
counter = counter + 1
end if
if glowing = "up" then
set the blend of sprite mysprite to the blend of sprite mysprite + 5
else if glowing = "down" then
set the blend of sprite mysprite to the blend of sprite mysprite - 5
end if
end